* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  color: #1a1a1a;
  line-height: 1.6;
}

section {
  padding: 70px 8%;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 0 0 60px 60px;
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: white; /* 👈 hero heading white hi rahegi */
}

.hero p {
  opacity: 0.9;
}

.hero-image img {
  width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* SECTION HEADINGS – YELLOW */
.highlights h2,
.locations h2,
.pricing h2,
.documents h2,
.about-content h2,
.cta h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #facc15; /* 👈 yellow heading */
}

/* GRID LAYOUTS */
.highlight-grid,
.location-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card, .location-card, .price-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover,
.location-card:hover,
.price-card:hover {
  transform: translateY(-5px);
}

/* PRICING */
.price {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  color: #2563eb;
}

/* DOCUMENTS */
.documents ul {
  max-width: 500px;
  margin: auto;
  list-style: none;
}

.documents li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* ABOUT SECTION */
.about-venue {
  background: #ffffff;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.about-content {
  text-align: center;
}

.about-content .lead {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 25px;
}

.about-content p {
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.8;
}

/* CTA */
.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
}

/* CTA BUTTONS */
.cta-buttons {
  margin-top: 25px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.call-btn {
  background: #33b5e5;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-3px);
}
/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
    overflow: hidden;   /* image bahar nahi jayegi */
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

}
.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

}
